home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / mail / pine3.96.tar.gz / pine3.96.tar / pine3.96 / pine / osdep / makefile.bas < prev    next >
BASIC Source File  |  1996-03-12  |  841b  |  41 lines

  1. # Don't edit makefile, edit makefile.bas instead.
  2. #
  3.  
  4. RM=  rm -f
  5.  
  6. ALL    =    os-a32.c os-aix.c os-asv.c os-aux.c os-bsd.c os-bsi.c \
  7.         os-cvx.c os-dos.c os-dyn.c os-gen.c os-hpp.c os-isc.c \
  8.         os-lnx.c os-neb.c os-nxt.c os-osf.c os-pt1.c os-ptx.c \
  9.         os-s40.c os-sco.c os-sgi.c os-sun.c os-sv4.c os-ult.c \
  10.         os-win.c os-wnt.c
  11.  
  12. .SUFFIXES: .ic
  13.  
  14. .ic.c:
  15.         ./includer < $*.ic > $*.c
  16.  
  17. all:        includer $(ALL)
  18.  
  19. includer:    includer.c
  20.         $(CC) -o includer includer.c
  21.  
  22. clean:
  23.         $(RM) $(ALL) includer
  24.  
  25. # You don't have to run this unless you change a .ic file.
  26. depend:
  27.         ./makedep
  28.  
  29. # Makedep only catches 1-level deep includes.  If something depends on a
  30. # 2nd-level include, put it here.
  31. os-a32.c: sunquota
  32. os-dyn.c: sunquota
  33. os-hpp.c: sunquota
  34. os-osf.c: sunquota
  35. os-ptx.c: sunquota
  36. os-s40.c: sunquota
  37. os-sgi.c: sunquota
  38. os-sun.c: sunquota
  39. os-sv4.c: sunquota
  40.  
  41.